home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Precision Software Appli…tions Silver Collection 1
/
Precision Software Applications Silver Collection Volume One (PSM) (1993).iso
/
windows
/
games
/
chessexe.arj
/
CHESSEXE.EXE
/
PIECE.C
< prev
next >
Wrap
Text File
|
1990-08-31
|
5KB
|
162 lines
/*
C source for GNU CHESS
Revision: 1990-09-30
Modified by Daryl Baker for use in MS WINDOWS environment
Based on Ideas and code segments of Charles Petzold from artices in
MicroSoft Systems Journal.
This file is part of CHESS.
CHESS is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY. No author or distributor accepts responsibility to anyone for
the consequences of using it or for whether it serves any particular
purpose or works at all, unless he says so in writing. Refer to the CHESS
General Public License for full details.
Everyone is granted permission to copy, modify and redistribute CHESS, but
only under the conditions described in the CHESS General Public License.
A copy of this license is supposed to have been given to you along with
CHESS so you can know your rights and responsibilities. It should be in a
file named COPYING. Among other things, the copyright notice and this
notice must be preserved on all copies.
*/
#define NOATOM
#define NOCLIPBOARD
#define NOCREATESTRUCT
#define NOFONT
#define NOREGION
#define NOSOUND
#define NOWH
#define NOWINOFFSETS
#define NOCOMM
#define NOKANJI
#include <windows.h>
#include <stdio.h>
#include "chess.h"
#include "defs.h"
extern struct PIECEBITMAP pieces[6];
#define PIECE_XAXIS 32
#define PIECE_YAXIS 32
static void QuerySqCenter ( short x, short y, POINT *pptl);
static short ConvertCoordToIndex ( short x, short y);
static void PieceOriginFromCenter ( POINT *pptl);
static void QuerySqPieceOrigin ( short x, short y, POINT *pptl);
static void DrawOnePiece ( HDC hDC, short x, short y, struct PIECEBITMAP *piece, DWORD color);
static void ShowPiece ( HDC hDC, POINT *pptl, struct PIECEBITMAP *Piece_bitmap,
DWORD Color );
static void QuerySqCenter ( short x, short y, POINT *pptl)
{
POINT aptl[4];
QuerySqCoords ( x, y, aptl );
pptl->x = (aptl[0].x + aptl[1].x + aptl[2].x + aptl[3].x)/4;
pptl->y = (aptl[0].y + aptl[2].y)/2;
}
static void PieceOriginFromCenter ( POINT *pptl)
{
pptl->x -= PIECE_XAXIS / 2;
pptl->y -= PIECE_YAXIS / 2;
}
static void QuerySqPieceOrigin ( short x, short y, POINT *pptl)
{
QuerySqCenter ( x, y, pptl);
PieceOriginFromCenter (pptl);
}
/*
Draw a piece in the specificed point
Piece_bitmap is a structure with the handles for the mask,
outline and piece.
*/
static void ShowPiece ( HDC hDC, POINT *pptl, struct PIECEBITMAP *Piece_bitmap,
DWORD Color )
{
HDC hMemDC;
HBRUSH hBrush, hOldBrush;
HPEN hOldPen;
hOldBrush = SelectObject ( hDC, GetStockObject (BLACK_BRUSH) );
hOldPen = SelectObject ( hDC, GetStockObject ( BLACK_PEN) );
hMemDC = CreateCompatibleDC ( hDC);
/* Write the mask to clear the space */
SelectObject ( hMemDC, Piece_bitmap->mask);
BitBlt ( hDC, pptl->x, pptl->y, PIECE_XAXIS, PIECE_YAXIS, hMemDC, 0, 0,SRCAND);
/* Write out the piece with an OR */
hBrush = CreateSolidBrush ( Color );
SelectObject ( hDC, hBrush );
SelectObject ( hMemDC, Piece_bitmap->piece);
BitBlt ( hDC, pptl->x, pptl->y, PIECE_XAXIS, PIECE_YAXIS, hMemDC, 0, 0,0xB80746L);
/* The draw the outline */
SelectObject ( hDC, GetStockObject ( BLACK_BRUSH ) );
SelectObject ( hMemDC, Piece_bitmap->outline);
BitBlt ( hDC, pptl->x, pptl->y, PIECE_XAXIS, PIECE_YAXIS, hMemDC, 0, 0, 0xB80746L);
SelectObject ( hDC, hOldBrush );
SelectObject ( hDC, hOldPen );
DeleteObject ( hBrush);
if ( DeleteDC(hMemDC)==0) MessageBeep(0);
}
static short ConvertCoordToIndex ( short x, short y)
{
return (y*8 + x );
}
static void DrawOnePiece ( HDC hDC, short x, short y, struct PIECEBITMAP *piece, DWORD color)
{
POINT origin;
QuerySqPieceOrigin ( x, y, &origin );
ShowPiece ( hDC, &origin, piece, color);
}
void DrawAllPieces ( HDC hDC, int reverse, short *pbrd, short *color,
DWORD clrblack, DWORD clrwhite )
{
short x,y;
short i;
for ( y=0; y<8; y++) {
for (x=0; x<8; x++) {
i = ConvertCoordToIndex (x, y);
if ( *(color+i) != NETURAL ) {
if (reverse == 0)
DrawOnePiece ( hDC, x, y, pieces+*(pbrd+i), (*(color+i)==BLACK) ? clrblack : clrwhite );
else
DrawOnePiece ( hDC, 7-x, 7-y, pieces+*(pbrd+i), (*(color+i)==BLACK) ? clrblack : clrwhite );
}
}
}
}